home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / cmdline.lha / cmdline / src / lib / arglist.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-03  |  834 b   |  28 lines

  1. //------------------------------------------------------------------------
  2. // ^FILE: arglist.h - lists to hold CmdArgs
  3. //
  4. // ^DESCRIPTION:
  5. //   This file declares the types that are used by a CmdLine to hold the
  6. //   arguments associated with it.  What we do is keep a list of lists
  7. //   of CmdArgs. The first list is the arguments that were specified
  8. //   by the user/programmer, The second list is the list of default
  9. //   arguments for this command. Only two lists are used at present.
  10. //
  11. // ^HISTORY:
  12. //    03/21/92    Brad Appleton    <brad@ssd.csd.harris.com>    Created
  13. //-^^---------------------------------------------------------------------
  14.  
  15. #ifndef _arglist_h
  16. #define _arglist_h
  17.  
  18. #include "fifolist.h"
  19.  
  20. class CmdArg;
  21.  
  22. DECLARE_FIFO_LIST(CmdArgList, CmdArg);
  23.  
  24. DECLARE_FIFO_LIST(CmdArgListList, CmdArgList);
  25.  
  26. #endif /* _arglist_h */
  27.  
  28.